home *** CD-ROM | disk | FTP | other *** search
- /**********************************************
- HTBCALENDAR.DLL
-
- ButtonControl.cpp
-
- TransEra Corporation 1999.
- This is the source for the HTBCalendar Dll.
- ***********************************************/
- #include "stdafx.h"
- #include "HTBCalendar.h"
- #include "ButtonControl.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // ButtonControl dialog
-
-
- ButtonControl::ButtonControl(CWnd* pParent /*=NULL*/)
- : CDialog(ButtonControl::IDD, pParent)
- {
- //{{AFX_DATA_INIT(ButtonControl)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
-
-
- void ButtonControl::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(ButtonControl)
- DDX_Control(pDX, IDC_BUTTON2, m_ButtonControl);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(ButtonControl, CDialog)
- //{{AFX_MSG_MAP(ButtonControl)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // ButtonControl message handlers
-